home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / bash / bash_110 / mint / bash110s.zoo / bash-1.10 / posixstat.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-07-07  |  4.5 KB  |  146 lines

  1. /* posixstat.h -- Posix stat(2) definitions for systems that
  2.    don't have them. */
  3.  
  4. /* Copyright (C) 1987,1991 Free Software Foundation, Inc.
  5.  
  6.    This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8.    Bash is free software; you can redistribute it and/or modify it
  9.    under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 1, or (at your option)
  11.    any later version.
  12.  
  13.    Bash is distributed in the hope that it will be useful, but WITHOUT
  14.    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15.    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
  16.    License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with Bash; see the file COPYING.  If not, write to the Free
  20.    Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  21.  
  22. /* This file should be included instead of <sys/stat.h>.
  23.    It relies on the local sys/stat.h to work though. */
  24. #if !defined (_POSIXSTAT_H)
  25. #define _POSIXSTAT_H
  26.  
  27. #include <sys/stat.h>
  28.  
  29. #if defined (isc386) && defined (__GNUC__)
  30. #define S_IFDIR 0040000
  31. #define S_IFMT  0170000
  32. #endif /* isc386 && __GNUC__ */
  33.  
  34. /* This text is taken directly from the Cadmus I was trying to
  35.    compile on:
  36.     the following MACROs are defined for X/OPEN compatibility
  37.     however, is the param correct ??
  38.    #define S_ISBLK(s) ((s.st_mode & S_IFMT) == S_IFBLK)
  39.  
  40.   Well, loser, the answer is no.  Do you still work at Cadmus? */
  41. #if defined (cadmus) && defined (BrainDeath)
  42. #  undef S_ISBLK
  43. #  undef S_ISCHR
  44. #  undef S_ISDIR
  45. #  undef S_ISFIFO
  46. #  undef S_ISREG
  47. #endif /* Horrible-Brain-Death-From-Birth */
  48.  
  49. /* Posix 1003.1 5.6.1.1 <sys/stat.h> file types */
  50.  
  51. /* Some Posix-wannabe systems define _S_IF* macros instead of S_IF*, but
  52.    do not provide the S_IS* macros that Posix requires. */
  53.  
  54. #if defined (_S_IFMT) && !defined (S_IFMT)
  55. #define S_IFMT _S_IFMT
  56. #endif
  57. #if defined (_S_IFIFO) && !defined (S_IFIFO)
  58. #define S_IFIFO _S_IFIFO
  59. #endif
  60. #if defined (_S_IFCHR) && !defined (S_IFCHR)
  61. #define S_IFCHR _S_IFCHR
  62. #endif
  63. #if defined (_S_IFDIR) && !defined (S_IFDIR)
  64. #define S_IFDIR _S_IFDIR
  65. #endif
  66. #if defined (_S_IFBLK) && !defined (S_IFBLK)
  67. #define S_IFBLK _S_IFBLK
  68. #endif
  69. #if defined (_S_IFREG) && !defined (S_IFREG)
  70. #define S_IFREG _S_IFREG
  71. #endif
  72. #if defined (_S_IFLNK) && !defined (S_IFLNK)
  73. #define S_IFLNK _S_IFLNK
  74. #endif
  75. #if defined (_S_IFSOCK) && !defined (S_IFSOCK)
  76. #define S_IFSOCK _S_IFSOCK
  77. #endif
  78.  
  79. /* Test for each symbol individually and define the ones necessary (some
  80.    systems claiming Posix compatibility define some but not all). */
  81.  
  82. #if defined (S_IFBLK) && !defined (S_ISBLK)
  83. #define    S_ISBLK(m)    (((m)&S_IFMT) == S_IFBLK)    /* block device */
  84. #endif
  85.  
  86. #if defined (S_IFCHR) && !defined (S_ISCHR)
  87. #define    S_ISCHR(m)    (((m)&S_IFMT) == S_IFCHR)    /* character device */
  88. #endif
  89.  
  90. #if defined (S_IFDIR) && !defined (S_ISDIR)
  91. #define    S_ISDIR(m)    (((m)&S_IFMT) == S_IFDIR)    /* directory */
  92. #endif
  93.  
  94. #if defined (S_IFREG) && !defined (S_ISREG)
  95. #define    S_ISREG(m)    (((m)&S_IFMT) == S_IFREG)    /* file */
  96. #endif
  97.  
  98. #if defined (S_IFIFO) && !defined (S_ISFIFO)
  99. #define    S_ISFIFO(m)    (((m)&S_IFMT) == S_IFIFO)    /* fifo - named pipe */
  100. #endif
  101.  
  102. #if defined (S_IFLNK) && !defined (S_ISLNK)
  103. #define    S_ISLNK(m)    (((m)&S_IFMT) == S_IFLNK)    /* symbolic link */
  104. #endif
  105.  
  106. #if defined (S_IFSOCK) && !defined (S_ISSOCK)
  107. #define    S_ISSOCK(m)    (((m)&S_IFMT) == S_IFSOCK)    /* socket */
  108. #endif
  109.  
  110. /*
  111.  * POSIX 1003.1 5.6.1.2 <sys/stat.h> File Modes
  112.  */
  113.  
  114. #if !defined (S_IRWXU)
  115. #  if !defined (S_IREAD)
  116. #    define S_IREAD    00400
  117. #    define S_IWRITE    00200
  118. #    define S_IEXEC    00100
  119. #  endif /* S_IREAD */
  120. #
  121. #  if !defined (S_IRUSR)
  122. #    define S_IRUSR    S_IREAD            /* read, owner */
  123. #    define S_IWUSR    S_IWRITE        /* write, owner */
  124. #    define S_IXUSR    S_IEXEC            /* execute, owner */
  125. #
  126. #    define S_IRGRP    (S_IREAD  >> 3)        /* read, group */
  127. #    define S_IWGRP    (S_IWRITE >> 3)        /* write, group */
  128. #    define S_IXGRP    (S_IEXEC  >> 3)        /* execute, group */
  129. #
  130. #    define S_IROTH    (S_IREAD  >> 6)        /* read, other */
  131. #    define S_IWOTH    (S_IWRITE >> 6)        /* write, other */
  132. #    define S_IXOTH    (S_IEXEC  >> 6)        /* execute, other */
  133. #  endif
  134. #
  135. #  define S_IRWXU    (S_IRUSR | S_IWUSR | S_IXUSR)
  136. #  define S_IRWXG    (S_IRGRP | S_IWGRP | S_IXGRP)
  137. #  define S_IRWXO    (S_IROTH | S_IWOTH | S_IXOTH)
  138. #endif /* !S_IRWXU */
  139.  
  140. /* These are non-standard, but are used in builtins.c$symbolic_umask() */
  141. #define S_IRUGO        (S_IRUSR | S_IRGRP | S_IROTH)
  142. #define S_IWUGO        (S_IWUSR | S_IWGRP | S_IWOTH)
  143. #define S_IXUGO        (S_IXUSR | S_IXGRP | S_IXOTH)
  144.  
  145. #endif /* _POSIXSTAT_H */
  146.